home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lessons.exe / lesson3 / EDITOR1 / EDIT.DFM / EDIT.txt
Encoding:
Text File  |  1996-01-03  |  1.2 KB  |  63 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 112
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'PC Plus Text Editor'
  7.   Font.Color = clWindowText
  8.   Font.Height = -17
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   PixelsPerInch = 120
  13.   TextHeight = 20
  14.   object Memo1: TMemo
  15.     Left = 0
  16.     Top = 0
  17.     Width = 427
  18.     Height = 244
  19.     Align = alClient
  20.     TabOrder = 0
  21.   end
  22.   object MainMenu1: TMainMenu
  23.     Left = 48
  24.     Top = 40
  25.     object FileMnu: TMenuItem
  26.       Caption = '&File'
  27.       object FileNew: TMenuItem
  28.         Caption = '&New'
  29.         OnClick = FileNewClick
  30.       end
  31.       object FileSave: TMenuItem
  32.         Caption = '&Save'
  33.         OnClick = FileSaveClick
  34.       end
  35.       object FileSaveAs: TMenuItem
  36.         Caption = 'Save &As'
  37.         OnClick = FileSaveAsClick
  38.       end
  39.       object FileLoad: TMenuItem
  40.         Caption = '&Load'
  41.         OnClick = FileLoadClick
  42.       end
  43.       object N1: TMenuItem
  44.         Caption = '-'
  45.       end
  46.       object FileExit: TMenuItem
  47.         Caption = '&Exit'
  48.         OnClick = FileExitClick
  49.       end
  50.     end
  51.   end
  52.   object OpenDialog1: TOpenDialog
  53.     FileName = '*.*'
  54.     Left = 88
  55.     Top = 40
  56.   end
  57.   object SaveDialog1: TSaveDialog
  58.     DefaultExt = 'txt'
  59.     Left = 128
  60.     Top = 40
  61.   end
  62. end
  63.